crypto/tls.serverHandshakeState.hello (field)

26 uses

	crypto/tls (current package)
		handshake_server.go#L28: 	hello        *serverHelloMsg
		handshake_server.go#L125: 	c.ekm = ekmFromMasterSecret(c.vers, hs.suite, hs.masterSecret, hs.clientHello.random, hs.hello.random)
		handshake_server.go#L177: 	hs.hello = new(serverHelloMsg)
		handshake_server.go#L178: 	hs.hello.vers = c.vers
		handshake_server.go#L194: 	hs.hello.random = make([]byte, 32)
		handshake_server.go#L195: 	serverRandom := hs.hello.random
		handshake_server.go#L217: 	hs.hello.extendedMasterSecret = hs.clientHello.extendedMasterSecret
		handshake_server.go#L218: 	hs.hello.secureRenegotiationSupported = hs.clientHello.secureRenegotiationSupported
		handshake_server.go#L219: 	hs.hello.compressionMethod = compressionNone
		handshake_server.go#L229: 	hs.hello.alpnProtocol = selectedProto
		handshake_server.go#L242: 		hs.hello.scts = hs.cert.SignedCertificateTimestamps
		handshake_server.go#L253: 		hs.hello.supportedPoints = []uint8{pointFormatUncompressed}
		handshake_server.go#L506: 	hs.hello.cipherSuite = hs.suite.id
		handshake_server.go#L510: 	hs.hello.sessionId = hs.clientHello.sessionId
		handshake_server.go#L514: 	hs.hello.ticketSupported = true
		handshake_server.go#L520: 	if _, err := hs.c.writeHandshakeRecord(hs.hello, &hs.finishedHash); err != nil {
		handshake_server.go#L540: 		hs.hello.ocspStapling = true
		handshake_server.go#L543: 	hs.hello.ticketSupported = hs.clientHello.ticketSupported && !c.config.SessionTicketsDisabled
		handshake_server.go#L544: 	hs.hello.cipherSuite = hs.suite.id
		handshake_server.go#L555: 	if _, err := hs.c.writeHandshakeRecord(hs.hello, &hs.finishedHash); err != nil {
		handshake_server.go#L565: 	if hs.hello.ocspStapling {
		handshake_server.go#L574: 	skx, err := keyAgreement.generateServerKeyExchange(c.config, hs.cert, hs.clientHello, hs.hello)
		handshake_server.go#L669: 	if hs.hello.extendedMasterSecret {
		handshake_server.go#L675: 			hs.clientHello.random, hs.hello.random)
		handshake_server.go#L741: 		keysFromMasterSecret(c.vers, hs.suite, hs.masterSecret, hs.clientHello.random, hs.hello.random, hs.suite.macLen, hs.suite.keyLen, hs.suite.ivLen)
		handshake_server.go#L798: 	if !hs.hello.ticketSupported {